home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 December / Chip_2001-12_cd1.bin / zkuste / tuning / download / xteq / setup.exe / {app} / plugins / XQ L2 Cache.xpl < prev    next >
Text File  |  2001-04-12  |  2KB  |  40 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="Hardware\CPU"
  5. "NAME"="Windows NT/2K/XP Level 2 Cache"
  6. "WARNING"="1"
  7. "VERSION"="1.07"
  8. "OSVERSION"="010101"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="Set L2 Cache"
  11. "DESCRIPTION 1"="Windows NT/2K/XP's L2 Cache size is optimized for 256K. Newer computer's L2 caches commonly exceed 256K . Use this plugin if L2 cache size exceeds 256K."
  12. "DESCRIPTION 2"="Enter your system's L2 Cache as a number, e.g. 512K cache should be entered as "512" [no quotes]."
  13. "DESCRIPTION 3"="Be sure you do *not* set the value to more L2 cache than you actually have installed.  To determine the amount of L2 cache you have installed, check with your vendor, computer's documentation, or watch the BIOS screen when you boot up your machine as the L2 cache amount is usually displayed during this time as well."
  14. "DESCRIPTION 4"="NOTE: Level 2 (L2) CPU cache size can be sized this way, ONLY IF using earlier CPUs: Intel (and compatibles) 386, 486, Pentium, Pentium Pro, AMD K5/K6/K7, Cyrix, etc, with off-chip L2 cache SRAM memory (external, off the CPU die)."
  15. "DESCRIPTION 5"="If using newer CPUs: Intel Pentium II/III/IV/Celeron/Xeon, AMD Athlon/Duron/Thunderbird, etc, with on-chip L2 cache SRAM memory (internal, on the CPU die), L2 cache size can *NOT* be altered!"
  16. "AUTHOR"="Ojatex@aol.com"
  17. "CONTACTURL"="http://members.aol.com/ojatex/"
  18. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  19. "COMMENT 1"=" "
  20. "COMMENT 2"="Thanks to Petr Tandler [tanpe@volny.cz] for the "out-board" tip!"
  21.  
  22. sP="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\SecondLevelDataCache"
  23.  
  24. Sub Plugin_Initialize 
  25.   i=RegReadValue(sP)
  26.   SetUIElement 1,i
  27. End Sub
  28.  
  29. Sub Plugin_CheckData(ElementIndex)
  30. End Sub
  31.  
  32. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  33.  i=GetUIElement(1)
  34.  Call RegWriteValue(sP,i,2)
  35.  Call Restart()
  36. End Sub
  37.  
  38. Sub Plugin_Terminate 
  39. End Sub
  40.